home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 November / Chip 11-96.iso / workshop / howto / infoshet < prev    next >
Text File  |  1996-05-25  |  27KB  |  560 lines

  1.                              Linux Information Sheet 
  2.  
  3.                            Version 3.07 June 11, 1994 
  4.  
  5.  
  6.         0.1 Introduction to Linux 
  7.  
  8.         Linux is a completely free reimplementation of the POSIX spec, 
  9.         with SYSV and BSD extensions (which means it looks like unix, 
  10.         but does not come from the same source code base), which is 
  11.         available in both source code and binary form. It is copyrighted 
  12.         by Linus B. Torvalds (torvalds@kruuna.helsinki.fi) and other 
  13.         contributors, and is freely redistributable under the terms of 
  14.         the GNU Public License. 
  15.  
  16.         Linux is not public domain. It is `free' software, and you may 
  17.         give copies away, but you must also give the source with it or 
  18.         make it available in the same way. If you redistribute any 
  19.         modifications, you are legally bound to distribute the source 
  20.         for those modifications. See the GNU Public License for details. 
  21.         A copy is included with the Linux source, or you can get a copy 
  22.         via ftp from prep.ai.mit.edu in /pub/gnu/COPYING 
  23.  
  24.         Linux is still free as of version 1.0, and will continue to be. 
  25.         Because of the nature of the GNU copyright which Linux is 
  26.         subject to, it would be illegal for it to be made not free. Note 
  27.         carefully: it is perfectly legal to charge money for 
  28.         distributing Linux, so long as you also distribute the source 
  29.         code. This is a generalization; if you want the fine points, 
  30.         read the GPL. 
  31.  
  32.         Linux runs only on 386/486 machines with an ISA or EISA bus. MCA 
  33.         (IBM's proprietary bus) is not currently supported because there 
  34.         is little available documentation. VLB and PCI local busses are 
  35.         both supported, although the NCR SCSI chip that is used in many 
  36.         PCI machines is not yet supported, but is currently in 
  37.         development. 
  38.  
  39.         Porting to other CPU's is likely to be somewhat difficult, as 
  40.         the kernel makes extensive use of 386 memory management and task 
  41.         primitives. However, this has become much easier as the kernel 
  42.         has become more general, and there is a port in progress for 
  43.         multiple Motorola 680x0 platforms (currently running on some 
  44.         Amigas and Ataris), and ports are being considered or have been 
  45.         started to other platforms as well, including ALPHA, PowerPC, 
  46.         and PowerMAC. Don't hold your breath, but if you are interested 
  47.         and able to contribute, you may well find other developers who 
  48.         wish to work with you. 
  49.  
  50.         Linux is no longer considered to be in beta testing, as version 
  51.         1.0 was released on March 14, 1994. There are still bugs in the 
  52.         system, and new bugs will creep up and be fixed as time goes on. 
  53.         Because Linux follows the ``open development model'', all new 
  54.         versions will be released to the public, whether or not they are 
  55.         considered ``production quality''. However, in order to help 
  56.         people tell whether they are getting a stable version or not, 
  57.         the following scheme has been implemented: Versions 1.x.y, where 
  58.         x is an even number, are stable versions, and only bug fixes 
  59.         will be applied as y is incremented. So from version 1.0.2 to 
  60.         1.0.3, there were only bug fixes, and no new features. Versions 
  61.         1.x.y, where x is an odd number, are beta-quality releases for 
  62.         developers only, and may be unstable and may crash, and are 
  63.         having new features added to them all the time. 
  64.  
  65.         From time to time, as the currect development kernel stabilizes, 
  66.         it will be frozen as the new ``stable'' kernel, and developement 
  67.         will continue on a new development version of the kernel. 
  68.  
  69.         Most versions of Linux, beta or not, are quite stable, and you 
  70.         can keep using those if they do what you need and you don't want 
  71.         to be on the bleeding edge. One site had a computer running 
  72.         version 0.97 patchlevel 1 (dating from the summer of 1992) for 
  73.         over 136 days without an error or crash. (It would have been 
  74.         longer if the backhoe operator hadn't mistaken a main power 
  75.         transformer for a dumpster...) 
  76.  
  77.         One thing to be aware of is that Linux is developed using an 
  78.         open and distributed model, instead of a closed and centralized 
  79.         model like much other software. This means that the current 
  80.         development version is always public (with up to a week or two's 
  81.         delay) so that anybody can use it. The result is that whenever a 
  82.         version with new functionality is released, it almost always 
  83.         contains bugs, but it also results in a very rapid development 
  84.         so that the bugs are found and corrected quickly, often in 
  85.         hours, as many people work to fix them. 
  86.  
  87.         In contrast, the closed and centralized model means that there 
  88.         is only one person or team working on the project, and they only 
  89.         release software that they think is working well. Often this 
  90.         leads to long intervals between releases, long waiting for bug 
  91.         fixes, and slower development. Of course, the latest release of 
  92.         such software to the public is often of higher quality, but the 
  93.         development speed is generally much slower. 
  94.  
  95.         As of June 11, 1994, the current stable version of Linux is 
  96.         1.0.9, and the development version was 1.1.19 the last time I 
  97.         heard. 
  98.  
  99.  
  100.         0.2 Linux Features 
  101.  
  102.  
  103.          * multitasking: several programs running at once. 
  104.  
  105.          * multiuser: several users on the same machine at once (and NO 
  106.            two-user licenses!). 
  107.  
  108.          * runs in 386 protected mode. 
  109.  
  110.          * has memory protection between processes, so that one program 
  111.            can't bring the whole system down. 
  112.  
  113.          * demand loads executables: Linux only reads from disk those 
  114.            parts of a program that are actually used. 
  115.  
  116.          * shared copy-on-write pages among executables. This means that 
  117.            multiple process can use the same memory to run in. When one 
  118.            tries to write to that memory, that page (4KB piece of 
  119.            memory) is copied somewhere else. Copy-on-write has two 
  120.            benefits: increasing speed and decreasing memory use. 
  121.  
  122.          * virtual memory using paging (not swapping whole processes) to 
  123.            disk: to a separate partition or a file in the filesystem, or 
  124.            both, with the possibility of adding more swapping areas 
  125.            during runtime (yes, they're still called swapping areas). A 
  126.            total of 16 of these 128 MB swapping areas can be used at 
  127.            once, for a theoretical total 2 GB of useable swap space. 
  128.  
  129.          * a unified memory pool for user programs and disk cache (so 
  130.            that all free memory can be used for caching, and the cache 
  131.            can be reduced when running large programs). 
  132.  
  133.          * dynamically linked shared libraries (DLL's)(static libraries 
  134.            too, of course). 
  135.  
  136.          * does core dumps for post-mortem analysis, allowing the use of 
  137.            a debugger on a program not only while it is running but also 
  138.            after it has crashed. 
  139.  
  140.          * mostly compatible with POSIX, System V, and BSD at the source 
  141.            level. 
  142.  
  143.          * through iBCS2-compliant emulation, mostly compatible with 
  144.            SCO, SVR3, and SVR4 at the binary level. 
  145.  
  146.          * all source code is available, including the whole kernel and 
  147.            all drivers, the development tools and all user programs; 
  148.            also, all of it is freely distributable. There are some 
  149.            commercial programs being provided for Linux now without 
  150.            source, but everything that has been free is still free. 
  151.  
  152.          * POSIX job control. 
  153.  
  154.          * pseudoterminals (pty's). 
  155.  
  156.          * 387-emulation in the kernel so that programs don't need to do 
  157.            their own math emulation. Every computer running Linux 
  158.            appears to have a math coprocessor. Of course, if your 
  159.            computer already contains an FPU, it will be used instead of 
  160.            the emulation, and you can even compile your own kernel with 
  161.            math emulation removed, for a small memory gain. 
  162.  
  163.          * support for many national or customized keyboards, and it is 
  164.            fairly easy to add new ones. 
  165.  
  166.          * multiple virtual consoles: several independent login sessions 
  167.            through the console, you switch by pressing a hot-key 
  168.            combination (not dependent on video hardware). 
  169.  
  170.          * Supports several common filesystems, including minix-1, 
  171.            Xenix, and all the system V filesystems, and has an advanced 
  172.            filesystem of its own, which offers filesystems of up to 4 
  173.            TB, and names up to 255 characters long. 
  174.  
  175.          * transparent access to MS-DOS partitions (or OS/2 FAT 
  176.            partitions) via a special filesystem: you don't need any 
  177.            special commands to use the MS-DOS partition, it looks just 
  178.            like a normal Unix filesystem (except for funny restrictions 
  179.            on filenames, permissions, and so on). MS-DOS 6 compressed 
  180.            partitions do not work at this time, and are not expected to. 
  181.  
  182.          * special filesystem called UMSDOS which allows Linux to be 
  183.            installed on a DOS filesystem. 
  184.  
  185.          * read-only HPFS-2 support for OS/2 2.1 
  186.  
  187.          * CD-ROM filesystem which reads all standard formats of 
  188.            CD-ROMs. 
  189.  
  190.          * TCP/IP networking, including ftp, telnet, NFS, etc. 
  191.  
  192.  
  193.         0.3 Hardware Issues 
  194.  
  195.  
  196.         0.3.1 Minimal configuration 
  197.  
  198.         The following is probably the smallest possible configuration 
  199.         that Linux will work on: 386SX/16, 2 MB RAM, 1.44 MB or 1.2 MB 
  200.         floppy, any supported video card (+ keyboards, monitors, and so 
  201.         on of course). This should allow you to boot and test whether it 
  202.         works at all on the machine, but you won't be able to do 
  203.         anything useful. 
  204.  
  205.         In order to do something, you will want some hard disk space as 
  206.         well, 5 to 10 MB should suffice for a very minimal setup (with 
  207.         only the most important commands and perhaps one or two small 
  208.         applications installed, like, say, a terminal program). This is 
  209.         still very, very limited, and very uncomfortable, as it doesn't 
  210.         leave enough room to do just about anything, unless your 
  211.         applications are quite limited. It's generally not recommended 
  212.         for anything but testing if things work, and of course to be 
  213.         able to brag about small resource requirements. 
  214.  
  215.  
  216.         0.3.2 Usable configuration 
  217.  
  218.         If you are going to run computationally intensive programs, such 
  219.         as gcc, X, and TeX, you will probably want a faster processor 
  220.         than a 386SX/16, but even that should suffice if you are 
  221.         patient. 
  222.  
  223.         In practice, you need at least 4 MB of RAM if you don't use X, 
  224.         and 8 MB if you do. Also, if you want to have several users at a 
  225.         time, or run several large programs (compilations for example) 
  226.         at a time, you may want more than 4 MB of memory. It will still 
  227.         work with a smaller amount of memory (should work even with 2 
  228.         MB), but it will use virtual memory (using the hard drive as 
  229.         slow memory) and that will be so slow as to be unusable. 
  230.  
  231.         The amount of hard disk you need depends on what software you 
  232.         want to install. The normal basic set of Unix utilities, shells, 
  233.         and administrative programs should be comfortable in less than 
  234.         10 MB, with a bit of room to spare for user files. For a more 
  235.         complete system, get Slackware, MCC, or (soon) Debian or 
  236.         Linux/PRO, and assume that you will need 60 to 200 MB, depending 
  237.         on what you choose to install and what distribution you get. Add 
  238.         whatever space you want to reserve for user files to these 
  239.         totals. With today's prices on hard drives, if you are buying a 
  240.         new system, it makes no sense to buy a drive that is too small. 
  241.         Get at least 200 MB, and you will not regret it. 
  242.  
  243.         Add more memory, more hard disk, a faster processor and other 
  244.         stuff depending on your needs, wishes and budget to go beyond 
  245.         the merely usable. In general, one big difference from DOS is 
  246.         that with Linux, adding memory makes a large difference, whereas 
  247.         with dos, extra memory doesn't make that much difference. This 
  248.         of course has something to do with DOS's 640KB limit. 
  249.  
  250.  
  251.         0.3.3 Supported hardware 
  252.  
  253.         CPU: Anything that runs 386 protected mode programs (all models 
  254.         of 386s and 486s should work; 286s don't work, and never will). 
  255.  
  256.         Architecture: ISA or EISA bus. MCA (mostly true blue PS/2's) 
  257.         does not work. Local busses (VLB and PCI) work. 
  258.  
  259.         RAM: Theoretically up to 1 GB. This has not been tested. Some 
  260.         people (including Linus) have noted that adding ram without 
  261.         adding more cache at the same time has slowed down their machine 
  262.         extremely, so if you add memory and find your machine slower, 
  263.         try adding more cache. Over 64MB will require a boot-time 
  264.         parameter, as the BIOS cannot report more than 64MB, because it 
  265.         is ``broken as designed.'' 
  266.  
  267.         Data storage: Generic AT drives (IDE, 16 bit HD controllers with 
  268.         MFM or RLL) are supported, as are SCSI hard disks and CD-ROMs, 
  269.         with a supported SCSI adaptor. Generic XT controllers (8 bit 
  270.         controllers with MFM or RLL) are also supported. Supported SCSI 
  271.         adaptors: Adaptec 1542, 1522, and 1740 in extended (not 1542 
  272.         compatible) mode, Buslogic controllers via the Adaptek 
  273.         compatibility or with their own driver, Seagate ST-01 and ST-02, 
  274.         Future Domain TMC-88x series (or any board based on the TMC950 
  275.         chip) and TMC1660/1680, Ultrastor 14F, 24F and 34F, and Western 
  276.         Digital wd7000. SCSI and some QIC-02 and QIC-80 tapes are also 
  277.         supported. Several CD-ROM devices are also supported, including 
  278.         Matsushita/Panasonic, Mitsumi, Sony, Soundblaster, Toshiba, and 
  279.         others. For exact models, check the hardware compatability 
  280.         HOWTO. 
  281.  
  282.         Video: VGA, EGA, CGA, or Hercules (and compatibles) work in text 
  283.         mode. For graphics and X, there is support for (at least) normal 
  284.         VGA, some super-VGA cards (most of the cards based on ET3000, 
  285.         ET4000, Paradise, and some Trident chipsets), S3 (except for 
  286.         Diamond Stealth cards, because the manufacturer won't tell how 
  287.         to program it), 8514/A, ATI MACH8, ATI MACH32, and hercules. 
  288.         (Linux uses the Xfree86 X server, so that determines what cards 
  289.         are supported.) 
  290.  
  291.         Networking: Western Digital 80x3, ne1000, ne2000, 3com501 (not 
  292.         recommended), 3com503, 3com507, 3com509, 3com589 PCMCIA, Allied 
  293.         Telliesis AT1500, most LANCE boards, d-link pocket adaptors, 
  294.         SLIP, CSLIP, PLIP (Parallel Link IP), and more. 
  295.  
  296.         Other hardware: SoundBlaster, ProAudio Spectrum 16, Gravis 
  297.         Ultrasound, AST Fourport cards (with 4 serial ports), several 
  298.         models of Boca serial boards, the Usenet Serial Card II, several 
  299.         flavours of bus mice (Microsoft, Logitech, PS/2). 
  300.  
  301.  
  302.         0.4 An Incomplete List of Ported Programs and Other Software 
  303.  
  304.  
  305.         Most of the common Unix tools and programs have been ported to 
  306.         Linux, including almost all of the GNU stuff and many X clients 
  307.         from various sources. Actually, ported is often too strong a 
  308.         word, since many programs compile out of the box without 
  309.         modifications, or only small modifications, because Linux tracks 
  310.         POSIX quite closely. Unfortunately, there are not very many 
  311.         end-user applications at this time. Nevertheless, here is an 
  312.         incomplete list of software that is known to work under Linux. 
  313.  
  314.         Basic Unix commands: ls, tr, sed, awk and so on (you name it, 
  315.         we've probably got it). 
  316.  
  317.         Development tools: gcc, gdb, make, bison, flex, perl, rcs, cvs, 
  318.         gprof. 
  319.  
  320.         Graphical environments: X11R5 (Xfree86), MGR. 
  321.  
  322.         Editors: GNU Emacs, Lucid Emacs, MicroEmacs, jove, epoch, elvis 
  323.         (GNU vi), vim, vile, joe, pico, jed. 
  324.  
  325.         Shells: Bash (POSIX sh-compatible), zsh (include ksh 
  326.         compatiblity mode), pdksh, tcsh, csh, rc, ash (mostly 
  327.         sh-compatible), and many more. 
  328.  
  329.         Telecommunication: Taylor (BNU-compatible) UUCP, kermit, szrz, 
  330.         minicom, pcomm, xcomm, term (runs multiple shells, redirects 
  331.         network activity, and allows remote X, all over one modem line), 
  332.         Seyon (popular X-windows communications program), and several 
  333.         fax and voice-mail (using ZyXEL modems) packages are available. 
  334.         Of course, remote serial logins are supported. 
  335.  
  336.         News and mail: C-news, innd, trn, nn, tin, smail, elm, mh, pine. 
  337.  
  338.         Textprocessing: TeX, groff, doc, ez. 
  339.  
  340.         Games: Nethack, several Muds and X games, and lots of others. 
  341.         One of those games is looking through all the games available at 
  342.         tsx-11 and sunsite. 
  343.  
  344.         Suites: AUIS, the Andrew User Interface System. 
  345.  
  346.         All of these programs (and this isn't even a hundredth of what 
  347.         is available) are freely available. 
  348.  
  349.  
  350.         0.5 Who uses Linux? 
  351.  
  352.  
  353.         Linux is freely available, and no one is required to register 
  354.         their copies with any central authority, so it is difficult to 
  355.         know how many people use Linux. Several businesses are now 
  356.         surviving solely on selling and supporting Linux, and very few 
  357.         Linux users use those businesses, relatively speaking, and the 
  358.         Linux newsgroups are some of the most heavily read on the 
  359.         internet, so the number is likely in the hundreds of thousands, 
  360.         but hard numbers are hard to come by. However, one brave soul, 
  361.         Harald T. Alvestrand, has decided to try, and asks that if you 
  362.         use Linux, you send a message to linux-counter@uninett.no with 
  363.         one of the following subjects: ``I use Linux at home'', ``I use 
  364.         Linux at work'', or ``I use Linux at home and at work''. He is 
  365.         also counting votes of ``I don't use Linux'', for some reason. 
  366.         He posts his counts to comp.os.linux.misc. 
  367.  
  368.  
  369.         0.6 Getting Linux 
  370.  
  371.  
  372.  
  373.         0.6.4 Anonymous FTP 
  374.  
  375.         Matt Welsh has released a new version of his Installation and 
  376.         Getting Started guide, version 2.0. Also, the Linux 
  377.         documentation project (the LDP) has put out several other books 
  378.         in various states of completion, and these are available at 
  379.         sunsite.unc.edu:/pub/Linux/docs/LDP. Stay tuned to 
  380.         comp.os.linux.announce. 
  381.  
  382.         At least the following anonymous ftp sites carry Linux. 
  383.  
  384.  
  385.          Textual name                   Numeric address  Linux directory
  386.          =============================  ===============  ===============
  387.          tsx-11.mit.edu                 18.172.1.2       /pub/linux
  388.          sunsite.unc.edu                152.2.22.81      /pub/Linux
  389.          ftp.funet.fi                   128.214.248.6    /pub/OS/Linux
  390.          net.tamu.edu                   128.194.177.1    /pub/linux
  391.          ftp.mcc.ac.uk                  130.88.203.12    /pub/linux
  392.          src.doc.ic.ac.uk               146.169.2.1      /packages/linux
  393.          fgb1.fgb.mw.tu-muenchen.de     129.187.200.1    /pub/linux
  394.          ftp.informatik.tu-muenchen.de  131.159.0.110    /pub/comp/os/linux
  395.          ftp.dfv.rwth-aachen.de         137.226.4.111    /pub/linux
  396.          ftp.informatik.rwth-aachen.de  137.226.225.3    /pub/Linux
  397.          ftp.ibp.fr                     132.227.60.2     /pub/linux
  398.          kirk.bond.edu.au               131.244.1.1      /pub/OS/Linux
  399.          ftp.uu.net                     137.39.1.9       /systems/unix/linux
  400.          wuarchive.wustl.edu            128.252.135.4    mirrors/linux
  401.          ftp.win.tue.nl                 131.155.70.100   /pub/linux
  402.          ftp.stack.urc.tue.nl           131.155.2.71     /pub/linux
  403.          srawgw.sra.co.jp                                /Linux
  404.          cair.kaist.ac.kr                                /pub/Linux
  405.          ftp.denet.dk                   129.142.6.74     /pub/OS/linux
  406.          NCTUCCCA.edu.tw                140.111.1.10     /Operating-Systems/Linux
  407.          nic.switch.ch                  130.59.1.40      /mirror/linux/sunsite
  408.          monu1.ccmonash.edu.au          130.194.1.101    /pub/linux
  409.          cnuce_arch.cnr.it              131.114.1.10     /pub/Linux
  410.  
  411.  
  412.  
  413.         tsx-11.mit.edu and fgb1.fgb.mw.tu-muenchen.de are the official 
  414.         sites for Linux' GCC. Some sites mirror other sites. Please use 
  415.         the site closest (network-wise) to you whenever possible. 
  416.  
  417.         At least SunSite.unc.edu and ftp.informatik.tu-muenchen.de offer 
  418.         ftpmail services. Mail ftpmail@sunsite.unc.edu or 
  419.         ftp@informatik.tu-muenchen.de for help. 
  420.  
  421.         If you are lost, try looking at 
  422.         SunSite.unc.edu:/pub/Linux/distributions/, where several 
  423.         distributions are offered. 
  424.  
  425.  
  426.         0.6.5 Other methods of obtaining Linux 
  427.  
  428.         There are many BBS's that have Linux files. A list of them is 
  429.         occasionally posted to comp.os.linux.announce. Ask friends and 
  430.         user groups, or order one of the commmercial distributions. A 
  431.         list of these is contained in the Linux distribution HOWTO, 
  432.         available as 
  433.         sunsite.unc.edu:/pub/Linux/docs/HOWTO/distribution-HOWTO, and 
  434.         posted regularily to the comp.os.linux.announce newsgroup. 
  435.  
  436.  
  437.         0.6.6 Getting started 
  438.  
  439.         As mentioned at the beginning, Linux is not centrally 
  440.         administered. Because of this, there is no ``official'' release 
  441.         that one could point at, and say ``That's Linux.'' Instead, 
  442.         there are various ``distributions,'' which are more or less 
  443.         complete collections of software configured and packaged so that 
  444.         they can be used to install a Linux system. 
  445.  
  446.         The first thing you should do is to get and read the list of 
  447.         Frequently Asked Questions (FAQ) from one of the FTP sites, or 
  448.         by using the normal Usenet FAQ archives (e.g. rtfm.mit.edu). 
  449.         This document has plenty of instructions on what to do to get 
  450.         started, what files you need, and how to solve most of the 
  451.         common problems (during installation or otherwise). 
  452.  
  453.  
  454.         0.7 Legal Status of Linux 
  455.  
  456.  
  457.         Although Linux is supplied with the complete source code, it is 
  458.         copyrighted software, not public domain. However, it is 
  459.         available for free under the GNU Public License. See the GPL for 
  460.         more information. The programs that run under Linux each have 
  461.         their own copyright, although many of them use the GPL as well. 
  462.         X uses the MIT X copyright, and some utilities are under the BSD 
  463.         copyright. In any case, all of the software on the FTP site is 
  464.         freely distributable (or else it shouldn't be there). 
  465.  
  466.  
  467.         0.8 News About Linux 
  468.  
  469.  
  470.         A new magazine called Linux Journal was recently launched. It 
  471.         includes articles intended for almost all skill levels, and is 
  472.         intended to be helpful to all Linux users. Subscriptions are 19 
  473.         USD worldwide. Subscription inquiries can be sent via email to 
  474.         subs@ssc.com or faxed to (U.S.) 1-206-527-2806 or mailed to 
  475.         Linux Journal, PO Box 85867, Seattle, WA 98145-1867 USA. Please 
  476.         do not send credit card numbers via email; the internet is not 
  477.         secure, and it is entirely possible that a technologically adept 
  478.         thief may steal your credit card number and cost you a large sum 
  479.         of money if you do. 
  480.  
  481.  
  482.  
  483.         There are several Usenet newsgroups for Linux discussion, and 
  484.         also several mailing lists. See the Linux FAQ for more 
  485.         information about the mailing lists (you should be able to find 
  486.         the FAQ either in the newsgroup or on the FTP sites). 
  487.  
  488.         The newsgroup comp.os.linux.announce is a moderated newsgroup 
  489.         for announcements about Linux (new programs, bug fixes, etc). 
  490.  
  491.         The newsgroup comp.os.linux.admin is an unmoderated newsgroup 
  492.         for discussion of administration of Linux systems. 
  493.  
  494.         The newsgroup comp.os.linux.development is an unmoderated 
  495.         newsgroup specifically for discussion of Linux kernel 
  496.         development. The only application development questions that 
  497.         should be discussed here are those that are intimately 
  498.         associated with the kernel. All other development questions are 
  499.         probably generic UNIX development questions and should be 
  500.         directed to a comp.unix group instead. 
  501.  
  502.         The newsgroup comp.os.linux.help is an unmoderated newsgroup for 
  503.         any Linux questions that don't belong anywhere else. 
  504.  
  505.         The newsgroup comp.os.linux.misc is the replacement for 
  506.         comp.os.linux, and is meant for any discussion that doesn't 
  507.         belong elsewhere. 
  508.  
  509.         In general, do not crosspost between the Linux newsgroups. The 
  510.         only crossposting that is appropriate is an occasional posting 
  511.         between one unmoderated group and comp.os.linux.announce. The 
  512.         whole point of splitting comp.os.linux into many groups is to 
  513.         reduce traffic in each. Those that do not follow this rule will 
  514.         be flamed without mercy... 
  515.  
  516.         For the current status of the Linux kernel and a summary of the 
  517.         most recent versions, finger torvalds@kruuna.helsinki.fi 
  518.  
  519.  
  520.  
  521.         Linux is on the Web (WWW, W3, whatever...) The URL is 
  522.         http://sunsite.unc.edu/mdw/linux.html 
  523.  
  524.  
  525.         0.9 The Future 
  526.  
  527.  
  528.         Now that Linux 1.0 has been released, work is already in 
  529.         progress on several enhancements. Disk access speedups, TTY 
  530.         improvements, and many more things are being worked on. Linux 
  531.         1.0 is not the end of Linux, nor is it even very important; it 
  532.         is mostly intended to provide a stable version that people can 
  533.         use without being afraid that they are using beta software, and 
  534.         that can be standardized on to some extent. 
  535.  
  536.         There is plenty of code left to write, and even more 
  537.         documentation. Please join the DOC channel of the mailing list 
  538.         if you would like to contribute to the documentation. 
  539.  
  540.  
  541.         0.10 This document 
  542.  
  543.  
  544.         This document is maintained by Michael K. Johnson, 
  545.         johnsonm@Sunsite.unc.edu. Please mail me with any comments, no 
  546.         matter how small. I can't do a good job of maintaining this 
  547.         document without your help. A more-or-less current copy of this 
  548.         document can always be found as 
  549.         tsx-11.mit.edu:/pub/linux/docs/INFO-SHEET, and a DVI version can 
  550.         be found as INFO-SHEET.dvi, in the same directory. 
  551.  
  552.  
  553.         0.11 Legalese 
  554.  
  555.  
  556.         Trademarks are owned by their owners. There is no warranty about 
  557.         the information in this document. Use and distribute at your own 
  558.         risk. The content of this document is in the public domain, but 
  559.         please be polite and attribute any quotes. 
  560.